* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p {
  font-size: 1.25rem;
  font-weight: 400;
}
.page {
  background:
  radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.5) 100%),
  linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
  linear-gradient(rgba(0, 255, 234, 1) 0%, rgba(0, 153, 0, 0.75) 100%);
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  min-height: 100dvh;
  scroll-behavior: hide;
  overflow-y: hidden;
  overscroll-behavior: none;
}
.textColor {
  background:
  linear-gradient(rgba(0, 0, 0, 0) -10%, rgba(0, 0, 0, 0.25) 100%),
  linear-gradient( 90deg, rgba(0, 255, 234, 1) 0%, rgba(0, 153, 0, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__splash {
  height: 100dvh;
  width: 100%;
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  pointer-events: none;
}
.header__splash-on {
  background-color: white;
}
.header__splash-off {
  background-color: transparent;
  transition: background-color 5s ease;
}
.header__section {
  background: transparent;
}
.header__section-start {
  background:
  radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.5) 100%),
  linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
  linear-gradient(rgba(0, 255, 234, 1) 0%, rgba(0, 153, 0, 0.75) 100%),
  linear-gradient(rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  pointer-events: auto;
}
.header__wrapper {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 5%;
  top: 5%;
  z-index: 1;
}
.header__wrapper-start {
  flex-direction: column;
  align-items: center;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__title {
  font-size: 1.25rem;
  width: 80px;
  text-align: right;
  line-height: 1.25rem;
  margin-top: 8px;
  margin-right: 8px;
  text-shadow:
  /* 0 0 5px rgba(0, 153, 0, 0.75), */
  0 0 50px rgba(0, 255, 234, 1);
}
.header__title-start {
  text-align: center;
  width: auto;
  text-shadow: none;
  font-size: 1.5rem;
  margin-right: 0;
  margin-bottom: 15px;
}
.header__img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow:
  0 0 5px 0px rgba(0, 153, 0, 0.5),
  0 0 50px 0px rgba(0, 255, 234, 0.75);
}
.header__img-start {
  width: 160px;
  height: 160px;
  border-radius: 40px;
  box-shadow: none;
}
.header__password {
  display: none;
}
.header__password-start {
  display: block;
  border: none;
  border-bottom: 1px solid black;
  background-color: transparent;
  margin-top: 64px;
  text-align: center;
  padding: 2.5%;
  border-image: linear-gradient(90deg, #00ffea, #009900bf) 1;
  width: 160px;
  font-size: 1rem;
}
  /* Spinner Arrows */
  input[type=number]::-webkit-outer-spin-button,
  input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  input[type=number] {
    -moz-appearance: textfield;
  }
.header__pasword:focus {
  outline: none;
}
.header__hint {
  display: none;
}
.header__hint-start {
  display: block;
  position: absolute;
  bottom: 5%;
  right: 5%;
  text-align: right;
}
.header__background {
  display: none;
}
.header__background-start {
  display: block;
  background-color: white;
  height: 200svh;
  width: 100svh;
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
}
.screen {
  width: 100%;
  display: flex;
  justify-content: center;
  aspect-ratio: 1 / 1;
  max-height: 50dvh;
  position: relative;
  overflow: hidden;
  /* Transparencia Chromium */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0.25) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  /* Transparencia Standard */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0.25) 100%);
  mask-repeat: no-repeat;
  mask-size: cover;
}
.screenUD {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);

  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;

  mask-image: linear-gradient(to top, rgba(0,0,0,0.25), rgba(0,0,0,0));
  mask-repeat: no-repeat;
  mask-size: cover;
}
.screen__splash {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.screen__splash-on {
  background-color: white;
}
.screen__splash-off {
  background-color: transparent;
  transition: background-color 1s ease;
}
.screen__img {
  height: 100%;
  /* width: 100%; */
  max-width: 100%;
  position: absolute;
  pointer-events: none;
}
.screen__video {
  height: 100%;
  /* width: 100%; */
  position: absolute;
  pointer-events: none;
}
.article__subtitle {
  font-size: 1.25rem;
  padding: 0 5%;
}
.articleV__subtitle {
  margin-top: 8px;
}
.article__wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 5%;
}
.articleH__slot {
  width: 210px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.articleH__slot:active {
  transform: scale(0.9);
  transition: transform 0.25s ease;
}
.articleH__text {
  text-align: right;
  line-height: 1;
  padding: 0 7.5% 2.5% 5%;
}
#articleH__dateText {
}
.articleH__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.letter {
  /* border-radius: 20px; */
  position: absolute;
  z-index: 11;
  padding: 5%;
  width: 80%;
  text-align: center;
  text-align: justify;
  color: white;
  top: 50%;
  left: 50%;
  cursor: pointer;
  /* transform: translate(-50%, -50%); */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* iOS26 */
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px) saturate(75%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.75);
}
.letter__popUp {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.letter__title {
  text-align: center;
}
.letter__paragraph {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 10px;
}
.articleV__slot {
  width: 140px;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.articleV__slot:active {
  transform: scale(0.9);
  transition: transform 0.25s ease;
}
.articleV__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
}
#article__dateOverlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
}
.article__text {
  color: white;
  position: absolute;
  bottom: 0;
  right: 0;
  padding-right: 7.5%;
  font-weight: 300;
}
footer {
  height: 20px;
}

@media screen and (min-width: 640px) and (min-height: 920px) {
  .header__wrapper {
    transform: translate(-25%, -25%) scale(1.5);
    transform-origin: top right;
  }
  .dashboard__screen {
    position: relative;
  }
  .screen {
    max-height: 60dvh;
  }
  .screenUD {
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 50%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;

  mask-image: linear-gradient(to top, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 50%);
  mask-repeat: no-repeat;
  mask-size: cover;
  }
  .article__wrapper {
  gap: 15px;
  width: 100%;
  }
  .article__subtitle {
    font-size: 1.75rem;
  }
  .articleH__slot {
    width: 315px;
    height: 210px;
    border-radius: 16px;
  }
  .letter__title {
  font-size: 2rem;
  }
  .letter__paragraph {
    font-size: 1.5rem;
  }
  .articleV__slot {
    width: 210px;
    height: 315px;
    border-radius: 16px;
  }
  .article__subtitle {
  font-size: 1.75rem;
  }
}
@media screen and (max-height: 720px) {
  .letter__paragraph {
    font-size: 0.8rem;
  }
}